chenye-814 / DTSTRCT-ALGRTHM

0 stars 0 forks source link

Dec-25 Excel Sheet Column Number #3

Open chenye-814 opened 1 year ago

chenye-814 commented 1 year ago

https://leetcode.com/problems/excel-sheet-column-number/description/

chenye-814 commented 1 year ago
view code ```rust impl Solution { pub fn title_to_number(column_title: String) -> i32 { column_title .bytes() .map(|x| (x - b'A' + 1) as i32) .fold(0, |acc, x| acc * 26 + x) } } ```