上一主题 下一主题
ScriptCat,新一代的脚本管理器脚本站,与全世界分享你的用户脚本油猴脚本开发指南教程目录
返回列表 发新帖
楼主: 李恒道 - 

【当前无排名】挑战leetcode进入前1w名

[复制链接]
  • TA的每日心情
    慵懒
    2024-10-28 07:07
  • 签到天数: 193 天

    [LV.7]常住居民III

    712

    主题

    5959

    回帖

    6758

    积分

    管理员

    非物质文化遗产社会摇传承人

    积分
    6758

    荣誉开发者喜迎中秋油中2周年生态建设者

    发表于 2024-10-28 05:10:33 | 显示全部楼层

    https://leetcode.cn/problems/happy-number/submissions/576209580/?envType=study-plan-v2&envId=top-interview-150
    缓存秒了

    var isHappy = function (n) {
      const cache = new Map();
      while (true) {
        if (cache.has(n)) {
          return false;
        }
        cache.set(n, true);
        let newN = 0;
        while (n != 0) {
          newN += (n % 10) * (n % 10);
          n = parseInt(n / 10);
        }
        n = newN;
        if(newN==1){
          break;
        }
      }
      return true
    };
    混的人。
    ------------------------------------------
    進撃!永遠の帝国の破壊虎---李恒道

    入驻了爱发电https://afdian.net/a/lihengdao666
    个人宣言:この世界で私に胜てる人とコードはまだ生まれていません。死ぬのが怖くなければ来てください。
    回复
    订阅

    使用道具 举报

  • TA的每日心情
    慵懒
    2024-10-28 07:07
  • 签到天数: 193 天

    [LV.7]常住居民III

    712

    主题

    5959

    回帖

    6758

    积分

    管理员

    非物质文化遗产社会摇传承人

    积分
    6758

    荣誉开发者喜迎中秋油中2周年生态建设者

    发表于 2024-10-28 07:07:28 | 显示全部楼层

    https://leetcode.cn/problems/valid-sudoku/submissions/576211089/?envType=study-plan-v2&envId=top-interview-150
    脑筋急转弯题

    var isValidSudoku = function (board) {
    
      for (let index = 0; index < board.length; index++) {
        const hasNum = new Array(10).fill(false);
        for (let indey = 0; indey < board[0].length; indey++) {
          const char = board[index][indey];
          if (char !== ".") {
            if (hasNum[char]) {
              return false;
            }
            hasNum[char] = true;
          }
        }
      }
      //竖排
      for (let index = 0; index < board[0].length; index++) {
        const hasNum = new Array(10).fill(false);
        for (let indey = 0; indey < board.length; indey++) {
          const char = board[indey][index];
          if(char=='5'){
            debugger
          }
          if (char !== ".") {
            if (hasNum[char]) {
              return false;
            }
            hasNum[char] = true;
          }
        }
      }
      for (let x = 0; x < board[0].length / 3; x++) {
        for (let y = 0; y < board.length / 3; y++) {
          const hasNum = new Array(10).fill(false);
          for (let index = 0; index < 3; index++) {
            for (let indey = 0; indey < 3; indey++) {
              const char = board[x * 3 + index][y * 3 + indey];
              if (char !== ".") {
                if (hasNum[char]) {
                  return false;
                }
                hasNum[char] = true;
              }
            }
          }
        }
      }
      return true;
    };
    混的人。
    ------------------------------------------
    進撃!永遠の帝国の破壊虎---李恒道

    入驻了爱发电https://afdian.net/a/lihengdao666
    个人宣言:この世界で私に胜てる人とコードはまだ生まれていません。死ぬのが怖くなければ来てください。
    回复

    使用道具 举报

    发表回复

    本版积分规则

    快速回复 返回顶部 返回列表