Leetcode 65. Valid Number (조건검색, 정규표현식)


Leetcode 65. Valid Number (조건검색, 정규표현식)

https://leetcode.com/problems/valid-number/description/ Valid Number - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 오랜만에 포스팅하는 에러 코드 입니다! 이번에는 다양한 조건을 정규표현식, 그리고 boolean을 활용해 구현한 기발한 코드들을 Leetcode에서 가져왔습니다. 코드 자체가 창의적이고 인상깊어서 공부를 위한 기록으로 남깁니다 :) 1. 정규표현식 match 사용 class Solution:..


원문링크 : Leetcode 65. Valid Number (조건검색, 정규표현식)