Lab 1 - Friday

  1. Write and compile a Dart program that prints the first 10 prime numbers from the Fibonacci sequence.

  2. Write a Dart program that extracts all words from a phrase and prints top 3 most frequent words (case sensitive).

  3. 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.

  4. Write a Dart program that converts a string of characters written in UpperCamelCase into kebab-case-with-dash.