摘要: 题目在这里 pub fn prefix_matches(prefix: &str, request_path: &str) -> bool { //split by slash and change element into Option and add None at the end. let m 阅读全文
posted @ 2022-12-25 23:08 johnny_zhao 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 什么是Luhn算法? pub fn luhn(cc_number: &str) -> bool { //scan number from right to left, the digit *2 which in every second position if cc_number.is_empty( 阅读全文
posted @ 2022-12-25 18:18 johnny_zhao 阅读(46) 评论(0) 推荐(0) 编辑