Lab 1 - Friday
-
Write and compile a Dart program that prints the first 10 prime numbers from the Fibonacci sequence.
-
Write a Dart program that extracts all words from a phrase and prints top 3 most frequent words (case sensitive).
-
Write a Dart program that extracts all numbers from a text. Numbers can be integers or doubles. Aggregate all numbers alternating the four simple operators ('+', '-', '/' '*') and print the result. Make sure you also parse negative numbers correctly.
-
Write a Dart program that converts a string of characters written in
UpperCamelCaseintokebab-case-with-dash.