⭐ Level up your automation beginner journey: #2 Beginner Challenge awaits you! πŸ†

Dear Community,

Hope you enjoyed and exercised your UiPath automation skills with our #1 Beginner Challenge:

:point_down: Here is the Challenge #2 we have in store for you :point_down: crafted together with @pradeep_ch , @AutomationX_by_Kiran and @pathrudu

How can you create an automation that creates a list for storing names and displays it.

:date: Event Date: Today onwards!

:timer_clock: Deadline : your submission must be submitted by the 2024-04-24T20:59:00Z, your time-zone!

Stay tuned for the official announcement of the next and last challenge: number :three:.

Thank you and good luck,

UiPath Community

4 Likes

Hi @loredana_ifrim , @pradeep_ch , @AutomationX_by_Kiran and @pathrudu

Thank you for presenting Challenge #2! Herewith, I’m attaching the attached workflow zip file.

Input:

  1. image
  2. image
  3. image
  4. image
  5. image

Output:

Automation Beginner Journey Challenge 2.zip (47.0 KB)

Regards
PS Parvathy

3 Likes

Hi @loredana_ifrim ,

Thank you for presenting the challenge 2 of the series.

@AutomationX_by_Kiran ,@pradeep_ch and @pathrudu Thanks for another cool challenge.

Attaching my solution here :point_down:
Challenge2_NameDisplay.zip (4.5 KB)

Happy Challenge solving everyone :smile:

Thanks,
Gautham.

2 Likes

Hi @loredana_ifrim @pradeep_ch @AutomationX_by_Kiran @pathrudu

Thank you so much for this challenge!.

Please find attached solution
AutomationChallenge2.zip (3.2 KB)

2 Likes

Hi @loredana_ifrim @pradeep_ch

Thank for the UiPath Challenge. But unable to add the solution due to forum restrictions.

Adding a screenshot of the Main.

Thanks & Regards,
Sachin Narayankar

2 Likes

Hi @loredana_ifrim

Thanks for presenting the challenge @pradeep_ch , @pathrudu and @AutomationX_by_Kiran

Here i am attaching the solution.

Challenge2.zip (70.3 KB)

Thanks,
Lakshman Reddy.

2 Likes

Hi

@loredana_ifrim @pradeep_ch @AutomationX_by_Kiran @pathrudu

Thank you so much for challenge#2.
Level Up Challenge2.zip (3.8 KB)

Kindly find the attached solution.

Regards,
Aditi indoriya

2 Likes

Thanks for presenting the challenge @pradeep_ch , @pathrudu and @AutomationX_by_Kiran

Here i am attaching the solution.
ListOfNames.zip (48.3 KB)

3 Likes

hello all
Challenge2.zip (3.3 KB)

3 Likes

Challenge 2.zip (3.5 KB)

This is my submission for Challenge 2 @loredana_ifrim, @pradeep_ch, @AutomationX_by_Kiran & @pathrudu Thanks for the opportunity.

Happy Automation!!

3 Likes

Hi @loredana_ifrim,

Thanks for the opportunity to learn and expose logical skills @AutomationX_by_Kiran @pathrudu @pradeep_ch.

Explanation of Non-Primitive data type basics:
To store multiple data of same data type, we use Non-Primitive data type such as
Array, List, Hash-Set etc

  1. Array are used to store the static data and can’t expand its memory size dynamically.
    Example: arrayNames = {"Name1", "Name2", "Name3", "Name1"}

  2. List are used to store the data dynamically, it will expand its memory size and will allow duplicates.

  • To use the List we need to initialize the variable using New keyword
    listNames = New List(Of String) β€” Initialization

  • To add the static data to the list
    listNames = New List(Of String) FROM {"Name1", "Name2", "Name3", "Name1"}

  • To append the value to the existing list [add data dynamically]
    – use Append Items to Collection activity and provide the values and list variable type
    image

  1. HashSet are used to store the data dynamically, it will expand its memory size and will not allow duplicates. It will work as same as List but will not allow duplicates.
  • Initialization of HashSet
    – hashSetNames = New HashSet(Of String)

The best solution for the challenge is to store the names in List because we need to add the names dynamically at run time and the name may have duplicates too.

Solution:

  1. Loop to collect multiple Name dynamically from user using Input Dialog Activity
  2. Use Append Item to Collection activity to store the names in List variable
  3. Convert List to String to Display all the name at once with code
    String.Join(Environment.NewLine, listNames) As String

Step1: Input collect through Input dialog
image

Step2: Store the name to List
Note: If the list is not initialized, the the process will fail
image

Step3: Display the Names in one message using code
String.Join(Environment.NewLine, listNames)

Store Name and Display workflow
StoreTheNameAndDisplay.xaml (10.2 KB)

3 Likes

Hi Team, @pradeep_ch @AutomationX_by_Kiran @pathrudu @loredana_ifrim

Thanks for the Challenge2 (List of Names to Display), this is the good opportunity to learn new Skills from this Challenges.

Please find the solution below for the Challenge 2

Challenge2_ListofNames.zip (44.6 KB)

3 Likes

Hi @pradeep_ch, @AutomationX_by_Kiran, @pathrudu

Thank you for conducting this challenge.

Please find the attached solution

Challenge2_DisplayListofNames.zip (4.4 KB)

3 Likes

Hi @pradeep_ch, @AutomationX_by_Kiran, @pathrudu

Thank you for conducting this challenge.

Please find the attachment

[Challenge 2.zip|attachment](3.7 KB)

3 Likes

@loredana_ifrim @pradeep_ch @AutomationX_by_Kiran @pathrudu

Thank you for the 2nd challenge.

Please find the attachment.
ListName_Challenge2.zip (4.2 KB)

3 Likes

Hello, @loredana_ifrim ,@pradeep_Ch,@AutomationX_by_kiran and @pathrudu

Please find the attachment of my workflow for Beginner Challenge #2. Thank you for organizing this challenge.

Challenge.2.1.0.1.nupkg (25.1 KB)
Challenge 2.zip (26.4 KB)

Best Regards,
Ronak Patel

3 Likes

Hi,

Thanks for presenting the challenge @pradeep_ch , @pathrudu , @loredana_ifrim and @AutomationX_by_Kiran

attaching the solution.
Hyperautomation_Challenge2.zip (3.8 KB)

3 Likes

Hi @loredana_ifrim , @pradeep_ch , @AutomationX_by_Kiran and @pathrudu

Thank You for organizing this challenge
PFA my solution for Challenge #2

Main.xaml (11.8 KB)

With Regards,
Valli Viswa Varshini M

3 Likes

Hi @pradeep_ch, @AutomationX_by_Kiran, @pathrudu

Thank you for conducting this challenge.

Please find the attachment
Hyperautomation_Beginner_Challenge2.zip (3.8 KB)

3 Likes