Find the largest palindrome From the product of two 3-digit numb
- 时间:2020-09-10 12:55:33
- 分类:网络文摘
- 阅读:135 次
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99. Find the largest palindrome made from the product of two 3-digit numbers.
To check if a number in Javascript is palindrome, we can convert it to String, then split into char array, reverse the array, and join as a string, then a palindrome is a string that its reverse is the same.
1 2 3 4 5 6 7 8 9 10 11 12 13 | let ans = 0; for (let i = 999; i >= 100; i --) { for (let j = 999; j >= 100; j --) { let num = i * j; let s = String(num); let rs = s.split('').reverse().join(''); if (s === rs) { ans = Math.max(ans, num); } } } console.log(ans); |
let ans = 0;
for (let i = 999; i >= 100; i --) {
for (let j = 999; j >= 100; j --) {
let num = i * j;
let s = String(num);
let rs = s.split('').reverse().join('');
if (s === rs) {
ans = Math.max(ans, num);
}
}
}
console.log(ans);Two loops each range from 100 to 999 for 3-digit number. Then we check the product and record the maximum palindrome.
The answer is: 906609.
–EOF (The Ultimate Computing & Technology Blog) —
推荐阅读:“养胃饼干”不养胃 消费者起诉徐静蕾代言 盛夏常饮枸杞菊花茶 保养眼睛功效强 西瓜虽好,但这九类人群不宜吃西瓜 保健酒乱象调查:为见效快违法添加伟哥 饮用蜂蜜水的最佳时间及注意事项 红枣维生素含量高 喝大枣水养肝排毒 黑木耳营养丰富对健康有五大好处 香蕉和橘子能起到解毒护肝的作用 吃葡萄、喝葡萄酒能帮助调节性功能 绿茶、红茶、青茶、黑茶、白茶和黄茶
- 评论列表
-
- 添加评论