Detect Floating Point Number
-
Practice>Python>Regex and Parsing>Detect Floating Point Numberhackerrank.com 2019. 4. 22. 21:48
hackerrank.com Detect Floating Point Number Problem Link : https://www.hackerrank.com/challenges/introduction-to-regex/problem Difficulty : Easy Tip We can solve in two ways One is to solve by using regular expression, by detecting -, + and . The other is a way to utilize int(), float(), let's try this way We can create int() or float() from string If the given string is not proper, it will rais..