Alistair Wearmouth, Author at ProdSens.live https://prodsens.live/author/alistair-wearmouth/ News for Project Managers - PMI Wed, 20 Mar 2024 07:20:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://prodsens.live/wp-content/uploads/2022/09/prod.png Alistair Wearmouth, Author at ProdSens.live https://prodsens.live/author/alistair-wearmouth/ 32 32 Leetcode Solution: #1669 Merge In Between Linked Lists ๐Ÿš€ https://prodsens.live/2024/03/20/leetcode-solution-1669-merge-in-between-linked-lists-%f0%9f%9a%80/?utm_source=rss&utm_medium=rss&utm_campaign=leetcode-solution-1669-merge-in-between-linked-lists-%25f0%259f%259a%2580 https://prodsens.live/2024/03/20/leetcode-solution-1669-merge-in-between-linked-lists-%f0%9f%9a%80/#respond Wed, 20 Mar 2024 07:20:46 +0000 https://prodsens.live/2024/03/20/leetcode-solution-1669-merge-in-between-linked-lists-%f0%9f%9a%80/ leetcode-solution:-#1669-merge-in-between-linked-lists-

Question Type: Medium ๐ŸŽš๏ธ Complexities: Time: O(n), Space: O(1) ๐Ÿšฉ Code: ๐Ÿ‘‡ class Solution { public: ListNode* mergeInBetween(ListNode*…

The post Leetcode Solution: #1669 Merge In Between Linked Lists ๐Ÿš€ appeared first on ProdSens.live.

]]>
leetcode-solution:-#1669-merge-in-between-linked-lists-

Question Type: Medium ๐ŸŽš
Complexities: Time: O(n), Space: O(1) ๐Ÿšฉ

Code: ๐Ÿ‘‡

class Solution {
 public:
  ListNode* mergeInBetween(ListNode* list1, int a, int b, ListNode* list2) {
    ListNode* nodeBeforeA = list1;
    for (int i = 0; i < a - 1; ++i)
      nodeBeforeA = nodeBeforeA->next;

    ListNode* nodeB = nodeBeforeA->next;
    for (int i = 0; i < b - a; ++i)
      nodeB = nodeB->next;

    nodeBeforeA->next = list2;
    ListNode* lastNodeInList2 = list2;

    while (lastNodeInList2->next != nullptr)
      lastNodeInList2 = lastNodeInList2->next;

    lastNodeInList2->next = nodeB->next;
    nodeB->next = nullptr;
    return list1;
  }
};

Follow roshan_earth286 for More! โœŒ

The post Leetcode Solution: #1669 Merge In Between Linked Lists ๐Ÿš€ appeared first on ProdSens.live.

]]>
https://prodsens.live/2024/03/20/leetcode-solution-1669-merge-in-between-linked-lists-%f0%9f%9a%80/feed/ 0
The future of product in the age of AI: Yana Welinder (CEO, Kraftful) https://prodsens.live/2024/03/20/the-future-of-product-in-the-age-of-ai-yana-welinder-ceo-kraftful/?utm_source=rss&utm_medium=rss&utm_campaign=the-future-of-product-in-the-age-of-ai-yana-welinder-ceo-kraftful https://prodsens.live/2024/03/20/the-future-of-product-in-the-age-of-ai-yana-welinder-ceo-kraftful/#respond Wed, 20 Mar 2024 07:20:34 +0000 https://prodsens.live/2024/03/20/the-future-of-product-in-the-age-of-ai-yana-welinder-ceo-kraftful/ the-future-of-product-in-the-age-of-ai:-yana-welinder-(ceo,-kraftful)

This week on the podcast, we sit down with Yana Welinder, CEO of Kraftful. Yana shares insights into…

The post The future of product in the age of AI: Yana Welinder (CEO, Kraftful) appeared first on ProdSens.live.

]]>
the-future-of-product-in-the-age-of-ai:-yana-welinder-(ceo,-kraftful)

This week on the podcast, we sit down with Yana Welinder, CEO of Kraftful. Yana shares insights into how today’s product managers are transforming their roles by leveraging AI to create compelling user stories, fine-tuning financial models, and even hiring.

As AI interfaces grow more intuitive, we navigate the importance of a product manager’s openness to these advancements, the significant role AI plays in amplifying diverse customer feedback, and the ongoing responsibility of product professionals to shape AI to reflect the values that drive their visions forward. Readย moreย ยป

The post The future of product in the age of AI: Yana Welinder (CEO, Kraftful) appeared first on Mind the Product.

The post The future of product in the age of AI: Yana Welinder (CEO, Kraftful) appeared first on ProdSens.live.

]]>
https://prodsens.live/2024/03/20/the-future-of-product-in-the-age-of-ai-yana-welinder-ceo-kraftful/feed/ 0
Learn the ABCs of DXPs [Sponsored] https://prodsens.live/2024/02/27/dxp-marketing-benefits/?utm_source=rss&utm_medium=rss&utm_campaign=dxp-marketing-benefits https://prodsens.live/2024/02/27/dxp-marketing-benefits/#respond Tue, 27 Feb 2024 12:21:02 +0000 https://prodsens.live/2024/02/27/dxp-marketing-benefits/ learn-the-abcs-of-dxps-[sponsored]

Not sure if you should add a digital experience platform to your martech stack? Hereโ€™s how the latest…

The post Learn the ABCs of DXPs [Sponsored] appeared first on ProdSens.live.

]]>
learn-the-abcs-of-dxps-[sponsored]

Not sure if you should add a digital experience platform to your martech stack? Hereโ€™s how the latest systems make content easier to manage, optimize, and deliver to your audience.

The post Learn the ABCs of DXPs [Sponsored] appeared first on ProdSens.live.

]]>
https://prodsens.live/2024/02/27/dxp-marketing-benefits/feed/ 0