BOJ 2908
444 ワード
const input = require('fs').readFileSync('./input.txt').toString().trim().split(' ');
const a = input[0].split('').reverse().join('');
const b = input[1].split('').reverse().join('');
console.log(Math.max(a , b))
逆方向にするには、split("")の後にjoinで文字列を作成し、Mathを作成します.maxによる比較Reference
この問題について(BOJ 2908), 我々は、より多くの情報をここで見つけました https://velog.io/@scato/BOJ-2908テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol